home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d4
/
cwp.arc
/
POSTSCPT.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-28
|
549b
|
19 lines
@ECHO OFF
REM POSTSCPT.BAT - Copyright (c) 1990, Richard L. Siddall. All rights reseved.
REM for use with Crossword Publisher (XWP).
REM This file runs Crossword Publisher and creates most of an EPS file from its
REM output.
IF "%1" == "" GOTO NO_PUZZLE
XWP %1.XWP/SETUP=POSTSCPT/MATRIX=%1.XPS
IF ERRORLEVEL 1 GOTO XWP_ERROR
COPY POSTSCPT.HDR+%1.XPS+POSTSCPT.FTR %1.EPS
DEL %1.XPS
ECHO Now edit %1.EPS to insert the correct Bounding Box measurements
GOTO EXIT
:NO_PUZZLE
ECHO Puzzle name required!
GOTO EXIT
:XWP_ERROR
:EXIT
EXIT